Register MCP reference servers in the official MCP Registry#3175
Draft
olaservo wants to merge 3 commits intomodelcontextprotocol:mainfrom
Draft
Register MCP reference servers in the official MCP Registry#3175olaservo wants to merge 3 commits intomodelcontextprotocol:mainfrom
olaservo wants to merge 3 commits intomodelcontextprotocol:mainfrom
Conversation
Add registry metadata files for 7 reference servers: - everything (npm, with stdio/sse/streamable-http transports) - filesystem (npm) - memory (npm) - sequentialthinking (npm) - fetch (pypi) - git (pypi) - time (pypi) Uses placeholder version "0.0.0" to be updated by release.py at publish time. Closes modelcontextprotocol#3047 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add update_server_json() method to NpmPackage and PyPiPackage classes that updates both root version and packages[*].version fields when releasing. This ensures server.json files stay in sync with package.json/pyproject.toml versions for MCP registry publishing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add publish-registry-npm and publish-registry-pypi jobs to the release workflow. These jobs automatically publish server metadata to the MCP Registry after successful npm/pypi package publishing. Key features: - Uses GitHub OIDC authentication (no secrets required) - Checks for server.json existence before publishing - Runs in parallel with existing publish jobs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds infrastructure to automatically register and update 7 MCP reference servers in the official MCP Server Registry. It includes:
server.jsonfiles for all 7 local servers (everything, filesystem, memory, sequentialthinking, fetch, git, time)release.pyto keepserver.jsonversions aligned with package versionsCloses #3047
Server Details
Motivation and Context
The MCP Server Registry is now the official way to discover MCP servers. This PR registers the reference servers so they appear in the registry and stay updated automatically with each release.
Key benefits:
How Has This Been Tested?
server.jsonfiles validated against the registry schemarelease.pychanges tested locally to verify version sync logicFull end-to-end testing requires merging and triggering a release to verify OIDC authentication with the registry.
Breaking Changes
None. This is additive infrastructure that doesn't affect existing server functionality or user configurations.
Types of changes
Checklist
Additional context
Files Added
Files Modified
CI Workflow
Out of Scope
The docs remote server (
modelcontextprotocol.io/mcp) is not included in this PR and can be tracked separately here: modelcontextprotocol/modelcontextprotocol#2046